unicode/utf8.acceptRange.hi (field)

7 uses

	unicode/utf8 (current package)
		utf8.go#L96: 	hi uint8 // highest value for second byte.
		utf8.go#L121: 	if n > 1 && (p[1] < accept.lo || accept.hi < p[1]) {
		utf8.go#L141: 	if n > 1 && (s[1] < accept.lo || accept.hi < s[1]) {
		utf8.go#L177: 	if b1 < accept.lo || accept.hi < b1 {
		utf8.go#L225: 	if s1 < accept.lo || accept.hi < s1 {
		utf8.go#L476: 		if c := p[i+1]; c < accept.lo || accept.hi < c {
		utf8.go#L522: 		if c := s[i+1]; c < accept.lo || accept.hi < c {